runtime.m.mallocing (field)

20 uses

	runtime (current package)
		cgocheck.go#L42: 	if g.m.mallocing != 0 {
		iface.go#L127: 	if getg().m.mallocing != 0 {
		malloc.go#L979: 	if mp.mallocing != 0 {
		malloc.go#L985: 	mp.mallocing = 1
		malloc.go#L1052: 				mp.mallocing = 0
		malloc.go#L1174: 	mp.mallocing = 0
		mgcsweep.go#L433: 	if _g_.m.locks == 0 && _g_.m.mallocing == 0 && _g_ != _g_.m.g0 {
		mgcsweep.go#L472: 	if _g_.m.locks == 0 && _g_.m.mallocing == 0 && _g_ != _g_.m.g0 {
		mheap.go#L1526: 	gp.m.mallocing++
		mheap.go#L1540: 	gp.m.mallocing--
		panic.go#L40: 	if gp != nil && gp.m != nil && gp.m.mallocing != 0 {
		panic.go#L54: 	if gp != nil && gp.m != nil && gp.m.mallocing != 0 {
		panic.go#L767: 	if gp.m.mallocing != 0 {
		panic.go#L1123: 	_g_.m.mallocing++
		panic.go#L1228: 	if mp.locks != 0 || mp.mallocing != 0 || mp.throwing != 0 || mp.preemptoff != "" || mp.dying != 0 {
		preempt.go#L288: 	return mp.locks == 0 && mp.mallocing == 0 && mp.preemptoff == "" && mp.p.ptr().status == _Prunning
		proc.go#L4482: 	getg().m.mallocing++
		proc.go#L4550: 	getg().m.mallocing--
		proc.go#L5389: 		print("  M", mp.id, ": p=", id1, " curg=", id2, " mallocing=", mp.mallocing, " throwing=", mp.throwing, " preemptoff=", mp.preemptoff, ""+" locks=", mp.locks, " dying=", mp.dying, " spinning=", mp.spinning, " blocked=", mp.blocked, " lockedg=", id3, "\n")
		runtime2.go#L532: 	mallocing     int32